home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / hardware / cpu115 / makea.bat < prev    next >
DOS Batch File  |  1995-02-27  |  332b  |  14 lines

  1. @echo off
  2. echo makeA - CPU Identifier/Asm Builder  Version 1.01 (c) 1994,95 by B-coolWare.
  3. echo:
  4. yesno Do you want to compile CPU Identifier
  5. if errorlevel 1 goto compile
  6. goto Done
  7. :compile
  8. echo Building CPU Identifier/Asm...
  9. tasm /t/m/d__TINY__ cpu
  10. tlink /t/x cpu
  11. if exist *.obj del cpu.obj >nul
  12. :Done
  13. echo makeA done.
  14.